@charset "UTF-8";
/*Allgemeine Einstellungen*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: green;
}

a:hover {
  color: blue;
}

p + p {
  padding-top: 1rem;
}

html {
  font-family: "Lexend", sans-serif;
  background-color: rgba(255, 255, 255, 0.8980392157);
  width: 100%;
  height: 100%;
  overflow-x: auto;
}

/*Spezifische Einstellungen*/
/*Aufbau (Von oben nach unten):
    Display, Grid/Flex-Einstellungen, justify/align, padding/margin, weitere Positionierungs- und Größeneinstellungen, Rest
*/
body {
  display: grid;
  justify-content: center;
  justify-items: center;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  /*Einstellungen Header*/
  /*Einstellungen Main*/
}
body header {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  width: 100vw;
  height: 6rem;
  background-color: rgb(236, 236, 236);
  color: black;
}
body header .titleCont {
  display: flex;
  grid-column: 1/-1;
  grid-row: 1;
  align-items: center;
  position: relative;
}
body header .titleCont .imgCont {
  display: grid;
  justify-items: left;
  margin-right: auto;
  position: absolute;
  left: 1%;
  height: 100%;
}
body header .titleCont .imgCont .uniLogo {
  position: absolute;
  top: 20.05%;
  width: 15rem;
  height: 59.89583%;
}
body header .titleCont .h1Cont {
  position: absolute;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
}
body header .titleCont .h1Cont h1 {
  display: grid;
  text-align: center;
  padding-top: 0.4rem;
  margin-right: auto;
  height: 100%;
  width: 18rem;
}
@media (max-width: 600px) {
  body header .titleCont .imgCont .uniLogo {
    top: 10%;
    width: 5.5rem;
    height: auto;
  }
}
body main {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  justify-items: center;
  width: 100vw;
}
body main .einleitung {
  grid-column: 1/-1;
  padding-top: 0%;
  width: 75vw;
  overflow-wrap: break-word;
}
body main .einleitung .einleitungFrage {
  text-align: center;
  padding-top: 2%;
  color: green;
}
body main .einleitung .einleitungAntwort {
  text-align: center;
  padding-top: 1%;
}
body main .alleKacheln {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 5%;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  max-width: 1245px;
  width: 100%;
  gap: 2rem;
}
body main .alleKacheln .kachel {
  width: 16rem;
  height: 15rem;
}
body main .alleKacheln .kachel .TürGrün {
  background-image: linear-gradient(135deg, #145214 30%, #27AE60 70%);
}
body main .alleKacheln .kachel .TürBlauWeiß {
  background-image: linear-gradient(225deg, #5DADE2 30%, #7dffee 70%);
}
body main .alleKacheln .kachel .TürGelbWeiß {
  background-image: linear-gradient(135deg, rgb(255, 183, 0) 30%, rgb(255, 255, 82) 70%);
}
body main .alleKacheln .kachel .TürWeihnachtsRot {
  background-image: linear-gradient(135deg, #c60f0f 30%, #ff0000 70%);
}
body main .alleKacheln .kachel .TürWeihnachtsViolett {
  background-image: linear-gradient(135deg, #891189 30%, #bb46bb 70%);
}
body main .alleKacheln .kachel .kachelTür {
  display: grid;
  align-items: center;
  text-align: center;
  justify-content: center;
  position: relative;
  height: 100%;
  width: 100%;
}
body main .alleKacheln .kachel .kachelTür .kachelNummer {
  text-align: center;
  position: absolute;
  width: 100%;
  color: white;
  font-size: 5rem;
}
body main .alleKacheln .kachel .kachelTür .kachelTitel2 {
  text-align: center;
  position: absolute;
  width: 100%;
  font-size: 2rem;
  text-decoration: none;
  color: white;
  font-weight: bolder;
  visibility: hidden;
}
body main .alleKacheln .kachel:hover .kachelNummer {
  visibility: hidden;
}
body main .alleKacheln .kachel:hover .kachelTitel2 {
  visibility: visible;
}
body main .kachel24 {
  justify-self: center;
  padding-top: 2rem;
  margin-left: 0rem;
  width: 34.75rem;
  height: 17rem;
}
body main .kachel24 .kachelTür {
  position: relative;
  height: 100%;
  width: 100%;
  background-color: red;
}
body main .kachel24 .kachelTür .kachelNummer {
  text-align: center;
  position: absolute;
  top: 3.5rem;
  left: 0rem;
  width: 100%;
  font-size: 5rem;
  color: white;
}
body main .kachel24 .kachelTür .kachelNummer:hover {
  visibility: hidden;
}
body main .kachel24 .kachelTür .kachelTitel2 {
  text-align: center;
  position: absolute;
  top: 5.75rem;
  left: 0rem;
  width: 100%;
  font-size: 2rem;
  font-weight: bolder;
  text-decoration: none;
  color: white;
  visibility: hidden;
}
body main .kachel24 .kachelTür .kachelTitel2:hover {
  visibility: visible;
}
body main .kachel24:hover .kachelNummer {
  visibility: hidden;
}
body main .kachel24:hover .kachelTitel2 {
  visibility: visible;
}
@media (max-width: 600px) {
  body main {
    width: 90vw;
  }
  body main .einleitung {
    width: 90vw;
  }
  body main .einleitung .einleitungFrage {
    padding-top: 2rem;
  }
  body main .alleKacheln {
    width: 100vw;
    gap: 20px;
  }
  body main .alleKacheln .kachel {
    width: 8rem;
    height: 7.5rem;
  }
  body main .alleKacheln .kachel .kachelTür .kachelNummer {
    text-align: center;
  }
  body main .alleKacheln .kachel .kachelTür .kachelTitel2 {
    text-align: center;
    font-size: 1rem;
  }
  body main .kachel24 {
    width: 17.875rem;
    height: 9.25rem;
  }
  body main .kachel24 .kachelNummer {
    top: 0rem !important;
  }
  body main .kachel24 .kachelTitel2 {
    text-align: center !important;
    position: absolute;
    top: 3rem !important;
    font-size: 1rem !important;
  }
}
@media (min-width: 600px) and (max-width: 1200px) {
  body main {
    width: 75vw;
  }
  body main .einleitung {
    width: 75vw;
  }
  body main .alleKacheln {
    width: 100vw;
  }
  body main .alleKacheln .kachel {
    width: 8rem;
    height: 7.5rem;
  }
  body main .alleKacheln .kachel .kachelTür .kachelTitel2 {
    font-size: 1.5rem;
  }
  body main .kachel24 {
    width: 17.875rem;
    height: 9.25rem;
  }
  body main .kachel24 .kachelNummer {
    top: 0rem !important;
  }
  body main .kachel24 .kachelTitel2 {
    top: 1.5rem !important;
    font-size: 1.5rem !important;
  }
}
body footer {
  display: grid;
  grid-template-rows: auto auto;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 2rem;
  position: relative;
  bottom: 0;
  width: 100vw;
  background-color: rgb(236, 236, 236);
  font-size: 0.8rem;
}
body footer .textCont {
  display: grid;
  justify-items: center;
  justify-self: center;
  grid-column: 1/-1;
  grid-row: 1;
}
body footer .logoCont {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.75rem;
  position: relative;
  grid-column: 1;
  grid-row: 2;
}
body footer .logoCont .otherLogo {
  width: 10%;
  height: auto;
}
body footer .logoCont .ubbits {
  padding-left: 0.5rem;
  padding-top: 0.1rem;
  width: 9%;
  height: auto;
}

@media (max-width: 1150px) {
  footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  footer .textCont {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }
  footer .logoCont .otherLogo {
    width: 22% !important;
  }
  footer .logoCont .ubbits {
    width: 21% !important;
  }
}/*# sourceMappingURL=homepage.css.map */